QuickTime 3 Reference

Previous | Chapter Top | Chapter Contents | Next

Atomic Instrument Information Flags

These constants specify what pieces of information about an atomic instrument the caller is interested in and are passed to the MusicGetPartAtomicInstrument function.

enum {
    kGetAtomicInstNoExpandedSamples = 1 << 0,
    kGetAtomicInstNoOriginalSamples = 1 << 1,
    kGetAtomicInstNoSamples         = kGetAtomicInstNoExpandedSamples |
        kGetAtomicInstNoOriginalSamples,
    kGetAtomicInstNoKnobList        = 1 << 2,
    kGetAtomicInstNoInstrumentInfo  = 1 << 3,
    kGetAtomicInstOriginalKnobList  = 1 << 4,
    kGetAtomicInstAllKnobs          = 1 << 5
};

Constant descriptions

kGetAtomicInstNoExpandedSamples
Eliminate the expanded samples.
kGetAtomicInstNoOriginalSamples
Eliminate the original samples.
kGetAtomicInstNoSamples
Eliminate both the original and expanded samples.
kGetAtomicInstNoKnobList
Eliminate the knob list.
kGetAtomicInstNoInstrumentInfo
Eliminate the About box information.
kGetAtomicInstOriginalKnobList
Include the original knob list.
kGetAtomicInstAllKnobs
Include the current knob list.

 


© 1997 Apple Computer, Inc.

Previous | Chapter Top | Chapter Contents | Next